home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-11-30 | 1.6 KB | 41 lines | [TEXT/MPS ] |
- ; File: Folders.a
- ;
- ; Copyright: © 1983-1993 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: System 7.1 for ETO #11
- ; Created: Tuesday, March 30, 1993 18:00
- ;
- ;___________________________________________________________________________
-
- IF &TYPE('__INCLUDINGFOLDERS__') = 'UNDEFINED' THEN
- __INCLUDINGFOLDERS__ SET 1
-
- kOnSystemDisk EQU $8000
-
- kCreateFolder EQU 1 ; true- create a folder or not
- kDontCreateFolder EQU 0 ; false
-
- kSystemFolderType EQU 'macs' ; the system folder
- kDesktopFolderType EQU 'desk' ; the desktop folder; objects in this folder show on the desktop
- kTrashFolderType EQU 'trsh' ; the trash folder; objects in this folder show up in the trash
- kWhereToEmptyTrashFolderType EQU 'empt' ; the “empty trash” folder; Finder starts emptying from here down
-
- kPrintMonitorDocsFolderType EQU 'prnt' ; Print Monitor documents
-
- kStartupFolderType EQU 'strt' ; Finder objects (applications, documents, DAs, aliases to …) to open at startup go here
- kAppleMenuFolderType EQU 'amnu' ; Finder objects to put into the Apple menu go here
- kControlPanelFolderType EQU 'ctrl' ; Control Panels go here (may contain INITs)
- kExtensionFolderType EQU 'extn' ; Finder extensions go here
- kFontsFolderType EQU 'font' ; Fonts go here.
-
- kPreferencesFolderType EQU 'pref' ; preferences for applications go here
- kTemporaryFolderType EQU 'temp' ; temporary files go here (deleted periodically, but don’t rely on it)
-
- macro
- _FindFolder
- moveq #0,d0
- dc.w $A823
- endm
-
- ENDIF ; ...already included